home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Trial
/
Camtasia 6
/
camtasia.msi
/
Cabs.w1.cab
/
WMPlayItem.js
< prev
next >
Wrap
Text File
|
2008-10-10
|
758b
|
27 lines
function PlayItem( ItemNum )
{
if( document.mediaPlayer == undefined || document.mediaPlayer == null )
{
return;
}
if( document.mediaPlayer.playState != 3 )
document.mediaPlayer.controls.play();
if( navigator.appName == "Netscape" && !window.GeckoActiveXObject )
{
// Retrieve the media item at the position in the current playlist.
var media = document.mediaPlayer.getCurrentPlaylist().item(ItemNum);
// Play the media item.
document.mediaPlayer.getControls().playItem(media);
}
else
{
var media = document.mediaPlayer.currentPlaylist.item(ItemNum);
// Play the media item.
document.mediaPlayer.controls.playItem(media);
}
}